home *** CD-ROM | disk | FTP | other *** search
- unit Propform;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, Buttons;
-
- type
- TPropExpert = class(TForm)
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- ReadMethod: TCheckBox;
- WriteMethod: TCheckBox;
- Label5: TLabel;
- Label6: TLabel;
- ClassName: TEdit;
- PropertyName: TEdit;
- DataType: TEdit;
- ArrayIndex: TEdit;
- Default: TEdit;
- Index: TEdit;
- BitBtn1: TBitBtn;
- Label7: TLabel;
- Label8: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- PropExpert: TPropExpert;
-
- implementation
-
- {$R *.DFM}
-
- end.
-